home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 5
/
CD-ROM Today - The Disc (Issue 5)(November 1994).ISO
/
mac
/
Mac shareware
/
Education
/
RLaB
/
rlib
/
atanh.r
< prev
next >
Wrap
Text File
|
1994-09-21
|
324b
|
15 lines
//-------------------------------------------------------------------//
// Syntax: atanh ( X )
// Description:
// Atanh is the inverse hyperbolic tangent of the element(s) of X.
//-------------------------------------------------------------------//
atanh = function ( x )
{
return log ((1 + x) ./ (1 - x))/2;
};